home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / Fruity / STRINGTG.DXR / 00004_MainRoutines.ls < prev    next >
Encoding:
Text File  |  1998-04-13  |  12.8 KB  |  571 lines

  1. global gBlank, gStringObj, gGuyObj
  2.  
  3. on startMovie
  4.   global flushActive
  5.   set flushActive to 0
  6.   set the mouseDownScript to EMPTY
  7.   set the mouseUpScript to EMPTY
  8.   set the timeoutScript to EMPTY
  9. end
  10.  
  11. on stopMovie
  12.   global gPathDelim, gInitialColorDepth
  13.   if not IsShockWave() then
  14.     if the machineType <> 256 then
  15.       if not IsProj() then
  16.         closeXLib(the pathName & "JOHNNY.XOBJ")
  17.       end if
  18.     end if
  19.   end if
  20. end
  21.  
  22. on IsProj
  23.   return 1
  24. end
  25.  
  26. on IsShockWave
  27.   return 0
  28. end
  29.  
  30. on initGame
  31.   cursor(4)
  32.   initGlobals()
  33.   initObjects()
  34.   if not IsShockWave() then
  35.     if the machineType = 256 then
  36.       set gPathDelim to "\"
  37.     else
  38.       set gPathDelim to ":"
  39.       if not IsProj() then
  40.         openXLib(the pathName & "JOHNNY.XOBJ")
  41.       end if
  42.     end if
  43.   end if
  44.   setPuppets([6, 8, 9], 1)
  45.   resetCursor()
  46. end
  47.  
  48. on initGlobals
  49.   global gInitialColorDepth, gInteruptFlag, gSwingMode, gInitPoint
  50.   set gInitialColorDepth to 0
  51.   set gInteruptFlag to 0
  52.   set gBlank to 21
  53.   set gSwingMode to 0
  54.   set gInitPoint to point(264, 260)
  55. end
  56.  
  57. on initObjects
  58.   set gStringObj to new(script "StringManager")
  59.   set gGuyObj to new(script "JumpingGuyManager")
  60. end
  61.  
  62. on slide chan, H2, V2, steps, waitTime
  63.   set deltaH to the locH of sprite chan - H2
  64.   set deltaV to the locV of sprite chan - V2
  65.   repeat with incr = 1 to steps
  66.     set theTime to the timer
  67.     set the locH of sprite chan to H2 + (deltaH * (steps - incr) / steps)
  68.     set the locV of sprite chan to V2 + (deltaV * (steps - incr) / steps)
  69.     updateScreen()
  70.     updateStage()
  71.     repeat while the timer < (theTime + waitTime)
  72.       updateScreen()
  73.     end repeat
  74.   end repeat
  75. end
  76.  
  77. on sinSlideUnder chan, H2, V2, steps, waitTime
  78.   set deltaH to the locH of sprite chan - H2
  79.   set deltaV to the locV of sprite chan - V2
  80.   set a to 50
  81.   repeat with incr = 1 to steps
  82.     set theTime to the timer
  83.     set percentOfPath to float(steps - incr) / float(steps)
  84.     set the locH of sprite chan to H2 + (deltaH * percentOfPath)
  85.     set the locV of sprite chan to V2 + (deltaV * percentOfPath) + (a * -1 * sin(float(incr) / float(steps) * PI))
  86.     updateScreen()
  87.     updateStage()
  88.     repeat while the timer < (theTime + waitTime)
  89.       updateScreen()
  90.     end repeat
  91.   end repeat
  92. end
  93.  
  94. on slideAnim chan, H2, V2, steps, waitTime, memList
  95.   set deltaH to the locH of sprite chan - H2
  96.   set deltaV to the locV of sprite chan - V2
  97.   set counter to 1
  98.   repeat with incr = 1 to steps
  99.     set theTime to the timer
  100.     set the locH of sprite chan to H2 + (deltaH * (steps - incr) / steps)
  101.     set the locV of sprite chan to V2 + (deltaV * (steps - incr) / steps)
  102.     set the memberNum of sprite chan to getAt(memList, counter)
  103.     set counter to counter + 1
  104.     if counter = (count(memList) + 1) then
  105.       set counter to 1
  106.     end if
  107.     updateScreen()
  108.     updateStage()
  109.     repeat while the timer < (theTime + waitTime)
  110.       updateScreen()
  111.       updateStage()
  112.     end repeat
  113.   end repeat
  114. end
  115.  
  116. on resetCursor
  117.   cursor(200)
  118.   cursor([2, 3])
  119. end
  120.  
  121. on updateScreen
  122.   UpdateGuy()
  123.   if not soundBusy(1) then
  124.     puppetSnd(1, "SwingAmbient")
  125.   end if
  126. end
  127.  
  128. on UpdateAmbient
  129.   if not soundBusy(1) then
  130.   end if
  131. end
  132.  
  133. on UpdateGuy
  134.   mUpdateGuy(gGuyObj)
  135. end
  136.  
  137. on selectRope
  138.   mSelectRope(gStringObj)
  139. end
  140.  
  141. on resetGame
  142.   setPuppets([6, 8, 9], 0)
  143.   go(the frame - 4)
  144.   Dissolvetransition()
  145.   updateStage()
  146. end
  147.  
  148. on testIfNear num1, num2, range
  149.   if abs(num1 - num2) <= range then
  150.     return 1
  151.   else
  152.     return 0
  153.   end if
  154. end
  155.  
  156. on Interupt
  157.   global gInteruptFlag
  158.   if gInteruptFlag then
  159.     set gInteruptFlag to 0
  160.     return 1
  161.   else
  162.     return 0
  163.   end if
  164. end
  165.  
  166. on SendMD
  167.   global gMDList
  168.   set CstNum to the mouseCast
  169.   if getPos(gMDList, CstNum) then
  170.     mouseUp(script CstNum)
  171.   end if
  172. end
  173.  
  174. on TFCIL
  175.   global gMDList
  176.   set CstNum to the mouseCast
  177.   if getPos(gMDList, CstNum) then
  178.     return 1
  179.   else
  180.     return 0
  181.   end if
  182. end
  183.  
  184. on dbutton downSnd, upSound, doScript
  185.   set chan to the clickOn
  186.   set the stretch of sprite chan to 0
  187.   set UpCast to the castNum of sprite chan
  188.   set downCast to UpCast + 1
  189.   set the castNum of sprite chan to downCast
  190.   do(doScript)
  191.   set the castNum of sprite chan to UpCast
  192. end
  193.  
  194. on button downSnd, upSound
  195.   set chan to the clickOn
  196.   set the stretch of sprite chan to 0
  197.   set UpCast to the castNum of sprite chan
  198.   set downCast to UpCast + 1
  199.   set the castNum of sprite chan to downCast
  200.   puppetSnd(downSnd)
  201.   updateStage()
  202.   repeat while soundBusy(1)
  203.   end repeat
  204.   repeat while the mouseDown
  205.     if rollOver(chan) then
  206.       if the castNum of sprite chan = UpCast then
  207.         set the castNum of sprite chan to downCast
  208.         puppetSnd(downSnd)
  209.       end if
  210.     else
  211.       if the castNum of sprite chan = downCast then
  212.         set the castNum of sprite chan to UpCast
  213.         puppetSnd(upSound)
  214.       end if
  215.     end if
  216.     updateStage()
  217.   end repeat
  218.   repeat while soundBusy(1)
  219.   end repeat
  220.   if the castNum of sprite chan = downCast then
  221.     set the castNum of sprite chan to UpCast
  222.     puppetSnd(upSound)
  223.     updateStage()
  224.     repeat while soundBusy(1)
  225.     end repeat
  226.     return 1
  227.   else
  228.     return 0
  229.   end if
  230. end
  231.  
  232. on AnimLin chan, soundName, castList, waitTime, interuptFlag
  233.   global gInteruptFlag
  234.   puppetSnd(soundName)
  235.   updateStage()
  236.   set exitFlag to 0
  237.   repeat while soundBusy(1)
  238.     repeat with theCastNum in castList
  239.       set theTime to the timer + waitTime
  240.       set the castNum of sprite chan to theCastNum
  241.       UStage(theTime)
  242.       if not soundBusy(1) then
  243.         exit repeat
  244.       end if
  245.       if the mouseDown and interuptFlag then
  246.         if TFCIL() then
  247.           set exitFlag to 1
  248.           exit repeat
  249.         end if
  250.       end if
  251.     end repeat
  252.     if exitFlag then
  253.       exit repeat
  254.     end if
  255.     updateTimer()
  256.   end repeat
  257.   sound stop 1
  258.   if exitFlag then
  259.     set gInteruptFlag to 1
  260.   end if
  261. end
  262.  
  263. on AnimLinNL chan, soundName, castList, waitTime, interuptSound, interuptFlag
  264.   global gAntManagerObj, gInteruptFlag
  265.   puppetSnd(1, soundName)
  266.   updateStage()
  267.   set exitFlag to 0
  268.   repeat with theCastNum in castList
  269.     set theTime to the timer + waitTime
  270.     set the castNum of sprite chan to theCastNum
  271.     UStage(theTime)
  272.     if the mouseDown and interuptFlag then
  273.       if TFCIL() then
  274.         set exitFlag to 1
  275.         exit repeat
  276.       end if
  277.     end if
  278.     UpdateGuy()
  279.   end repeat
  280.   if interuptSound then
  281.     sound stop 1
  282.   end if
  283.   if exitFlag then
  284.     set gInteruptFlag to 1
  285.   end if
  286. end
  287.  
  288. on AnimRand chan, soundName, castList, waitTime, interuptFlag
  289.   global gInteruptFlag
  290.   puppetSnd(soundName)
  291.   updateStage()
  292.   set exitFlag to 0
  293.   repeat while soundBusy(1)
  294.     set animList to Shuffle(castList)
  295.     repeat with theCastNum in castList
  296.       set theTime to the timer + Randomize(waitTime, 3)
  297.       set the castNum of sprite chan to theCastNum
  298.       UStage(theTime)
  299.       if not soundBusy(1) then
  300.         exit repeat
  301.       end if
  302.       if the mouseDown and interuptFlag then
  303.         if TFCIL() then
  304.           set exitFlag to 1
  305.           exit repeat
  306.         end if
  307.       end if
  308.     end repeat
  309.     if exitFlag then
  310.       exit repeat
  311.     end if
  312.     updateTimer()
  313.   end repeat
  314.   sound stop 1
  315.   if exitFlag then
  316.     set gInteruptFlag to 1
  317.   end if
  318. end
  319.  
  320. on Shuffle startList
  321.   set shuffleList to []
  322.   set copyList to value(string(startList))
  323.   set listSize to count(startList)
  324.   repeat with z = 1 to listSize
  325.     set index to random(count(copyList))
  326.     add(shuffleList, getAt(copyList, index))
  327.     deleteAt(copyList, index)
  328.   end repeat
  329.   return shuffleList
  330. end
  331.  
  332. on MaybeReset
  333.   if IsShockWave() or (the machineType = 256) then
  334.     if the timeoutScript = "ResetEvents" then
  335.       ResetEvents()
  336.     end if
  337.   end if
  338. end
  339.  
  340. on RChance chance
  341.   if RandFloat() < chance then
  342.     return 1
  343.   else
  344.     return 0
  345.   end if
  346. end
  347.  
  348. on RandFloat
  349.   return random(1000) / 1000.0
  350. end
  351.  
  352. on LProb number, val1, prob1, val2, prob2
  353.   if val1 <> val2 then
  354.     set chance to ((prob1 - prob2) * (number - val2) / (val1 - val2)) + prob2
  355.     if chance <= 0 then
  356.       return 0
  357.     else
  358.       if chance >= 1 then
  359.         return 1
  360.       else
  361.         if RandFloat() <= chance then
  362.           return 1
  363.         else
  364.           return 0
  365.         end if
  366.       end if
  367.     end if
  368.   else
  369.     return 0
  370.   end if
  371. end
  372.  
  373. on PR
  374.   global aFighterList
  375.   set myScore to the score of getAt(aFighterList, 1)
  376.   set hisScore to the score of getAt(aFighterList, 2)
  377.   set tvalue to 2 * (myScore - hisScore) / 100.0
  378.   if tvalue <= 0.29999999999999999 then
  379.     set value to 0.29999999999999999
  380.   end if
  381.   return value
  382. end
  383.  
  384. on setPuppets theList, state
  385.   repeat with theChan in theList
  386.     puppetSprite(theChan, state)
  387.     set the stretch of sprite theChan to 0
  388.   end repeat
  389. end
  390.  
  391. on setStretch theList, state
  392.   repeat with theChan in theList
  393.     set the stretch of sprite theChan to 0
  394.   end repeat
  395. end
  396.  
  397. on puppetSnd chan, sound
  398.   if (chan > 4) or stringp(chan) then
  399.     if chan <> EMPTY then
  400.       puppetSound(1, chan)
  401.     end if
  402.   else
  403.     if stringp(sound) then
  404.       if sound <> EMPTY then
  405.         puppetSound(chan, sound)
  406.       end if
  407.     else
  408.       if sound <> 0 then
  409.         puppetSound(chan, sound)
  410.       end if
  411.     end if
  412.   end if
  413. end
  414.  
  415. on SwitchCast chan1, chan2
  416.   set hold1 to the castNum of sprite chan1
  417.   set the castNum of sprite chan1 to the castNum of sprite chan2
  418.   set the castNum of sprite chan2 to hold1
  419. end
  420.  
  421. on setCstLoc chan, CstNum, locP
  422.   set the memberNum of sprite chan to CstNum
  423.   set the loc of sprite chan to locP
  424. end
  425.  
  426. on Randomize center, range
  427.   return center + random(range) - (range / 2)
  428. end
  429.  
  430. on wait waitTicks
  431.   set theTime to the timer + waitTicks
  432.   repeat while the timer < theTime
  433.   end repeat
  434. end
  435.  
  436. on UStage theTime
  437.   updateStage()
  438.   repeat while the timer < theTime
  439.   end repeat
  440. end
  441.  
  442. on Dissolvetransition
  443.   if not IsShockWave() then
  444.     if the machineType <> 256 then
  445.       puppetTransition(51, 2)
  446.     else
  447.       puppetTransition(24, 2, 12)
  448.     end if
  449.   end if
  450. end
  451.  
  452. on sfo chan, fadeOutTime
  453.   set startLevel to the volume of sound chan
  454.   set theEndTime to the timer + fadeOutTime
  455.   repeat while the timer <= theEndTime
  456.     set theTimeLeft to theEndTime - the timer
  457.     set thePercent to theTimeLeft / (fadeOutTime * 1.0)
  458.     set the volume of sound chan to integer(startLevel * thePercent)
  459.   end repeat
  460.   set the volume of sound chan to 0
  461.   sound stop chan
  462.   if chan = 1 then
  463.     puppetSound(0)
  464.   end if
  465.   set the volume of sound chan to startLevel
  466. end
  467.  
  468. on sfd chan, fadeTime, endLevel
  469.   set startLevel to the volume of sound chan
  470.   set delta to startLevel - endLevel
  471.   set theEndTime to the timer + fadeTime
  472.   repeat while the timer <= theEndTime
  473.     set theTimeLeft to theEndTime - the timer
  474.     set thePercent to theTimeLeft / (fadeTime * 1.0)
  475.     set the volume of sound chan to endLevel + integer(delta * thePercent)
  476.   end repeat
  477.   set the volume of sound chan to endLevel
  478. end
  479.  
  480. on Flush
  481.   global gFlush
  482.   if (the machineType <> 256) and not IsShockWave() then
  483.     set gFlush to Johnny(mnew)
  484.     gFlush(mFlush)
  485.     gFlush(mdispose)
  486.   else
  487.     PCFlush()
  488.   end if
  489. end
  490.  
  491. on PCFlush
  492.   global oldkeyD, oldMd, oldMu, flushActive, oldTO, oldTL
  493.   if flushActive then
  494.     set the trace to 0
  495.     exit
  496.   end if
  497.   set oldkeyD to the keyDownScript
  498.   set oldMd to the mouseDownScript
  499.   set oldMu to the mouseUpScript
  500.   set oldTO to the timeoutScript
  501.   set oldTL to the timeoutLength
  502.   set the keyDownScript to "dontPassEvent"
  503.   set the mouseDownScript to "dontPassEvent"
  504.   set the mouseUpScript to "dontPassEvent"
  505.   set the timeoutLength to 5
  506.   set the timeoutScript to "ResetEvents"
  507.   set flushActive to 1
  508. end
  509.  
  510. on ResetEvents
  511.   global oldkeyD, oldMd, oldMu, flushActive, oldTO, oldTL
  512.   set the keyDownScript to oldkeyD
  513.   if oldMd = "DontPassEvent" then
  514.     set the mouseDownScript to EMPTY
  515.   else
  516.     set the mouseDownScript to oldMd
  517.   end if
  518.   if oldMu = "DontPassEvent" then
  519.     set the mouseUpScript to EMPTY
  520.   else
  521.     set the mouseUpScript to oldMu
  522.   end if
  523.   set the timeoutScript to oldTO
  524.   set the timeoutLength to oldTL
  525.   set flushActive to 0
  526. end
  527.  
  528. on USRL theList, newValue
  529.   set tempList to []
  530.   set listSize to count(theList)
  531.   repeat with zCount = 1 to listSize - 1
  532.     add(tempList, getAt(theList, zCount + 1))
  533.   end repeat
  534.   add(tempList, newValue)
  535.   return tempList
  536. end
  537.  
  538. on Dist PtA, PtB
  539.   set vector to PtB - PtA
  540.   set distance to sqrt(listSum(vector * vector))
  541.   return distance
  542. end
  543.  
  544. on listSum theList
  545.   set sum to 0
  546.   repeat with entry in theList
  547.     if not (integerp(entry) or floatp(entry)) then
  548.       set entry to 0
  549.     end if
  550.     set sum to sum + entry
  551.   end repeat
  552.   return sum
  553. end
  554.  
  555. on envTest
  556.   global gPathDelim, gInitialColorDepth
  557.   if the machineType <> 256 then
  558.     if the soundLevel = 0 then
  559.       alert("The sound level must be set above 0 for Bob and Weave to Box. The sound level is being set to 5.")
  560.       set the soundLevel to 5
  561.     end if
  562.     if IsProj() then
  563.       if the colorDepth <> 8 then
  564.         alert("Your monitor is being set to 8 bit to optimize performance. Your monitor will automatically be set back to " & the colorDepth & " when you quit.")
  565.         set gInitialColorDepth to the colorDepth
  566.         set the colorDepth to 8
  567.       end if
  568.     end if
  569.   end if
  570. end
  571.